Ethereum の適切な Gas Price を取得する
Web3.js の eth.getGasPrice メソッドを使用することで、過去数ブロックの Gas Price の中央値を取得することができる ドキュメント
以下の例は web3 version 0.20.x
サンプルコード
code:example.js
web3.eth.getGasPrice(function(error, result) {
console.log(result.toString(10));
var gasPriceInGwei = web3.fromWei(result, 'gwei');
console.log(gasPriceInGwei);
});
実際に動いているデモ